home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / Multiprocessing SDK / Sample Code / PowerFrax / includes / HFDocMandelbrot.h
Encoding:
C/C++ Source or Header  |  1996-03-23  |  621 b   |  24 lines  |  [TEXT/CWIE]

  1. /************************************************************************************/
  2. /*                                                                                    */
  3. /* PowerFrax                                                                        */
  4. /* ---------                                                                        */
  5. /*                                                                                    */
  6. /*    © DayStar Digital, Inc. 1995-1996                                                */
  7. /*    All Rights Reserved.                                                            */
  8. /*                                                                                    */
  9. /************************************************************************************/
  10.  
  11. #ifndef __HFDOCMANDELBROT__
  12. #define __HFDOCMANDELBROT__
  13.  
  14. typedef struct {
  15.     double zc;
  16.     double zd;
  17.     double step;
  18.     double escape;
  19.     long width;
  20.     char *results;
  21.     } sMandelbrotParams, *sMandelbrotParamsPtr;
  22.  
  23. #endif
  24.